home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- if %1x==x goto NODRIVE
- echo OUTPUT to DISKETTE
- echo .
- echo .
- echo Place into drive %1 the diskette that will be used to transfer schedule and
- echo worklog data to the main BillPower/TickleX data bases. Make sure that you
- echo have labeled the diskette properly, identifying your machine as the source
- echo of the data about to be transferred. Once the diskette is loaded, you may
- pause
- echo .
- echo .
- if not exist pc-sched.lbf goto SKIPSCHED
- copy pc-sched.lbf %1:
- copy pc-sched.lbi %1:
- :SKIPSCHED
- if not exist pc-wklog.lbf goto SKIPWORK
- copy pc-wklog.lbf %1:
- copy pc-wklog.lbi %1:
- :SKIPWORK
- copy pc-wklog.lbf pc-wklog.baf
- copy pc-wklog.lbi pc-wklog.bai
- copy pc-sched.lbf pc-sched.baf
- copy pc-sched.lbi pc-sched.bai
- erase pc-wklog.lb*
- delsched x
- :NEAREND
- cls
- echo .
- echo .
- echo Whatever schedule and worklog data you had on your hard disk has now been
- echo transferred to the diskette in drive %1. Now, take that diskette to the
- echo main computer, place it into that machine's drive A, and enter "INPUT A:"
- echo at the DOS prompt (you must be logged into the MANAGEX directory on that
- echo machine for this to work). The data on the diskette will be assimilated
- echo into the BillPower/TickleX data bases.
- echo .
- echo .
- goto END
- :NODRIVE
- cls
- echo .
- echo You must designate the destination diskette --
- echo .
- echo example: OUTPUT A: will output data to a diskette in drive A.
- echo .
- echo PLEASE TRY AGAIN
- echo .
- echo .
- :END